home *** CD-ROM | disk | FTP | other *** search
- #ifndef SYS_TIMES_H
- #define SYS_TIMES_H
-
- /*
- ** $VER: sys/times.h 1.2 (18.09.98)
- ** Includes Release 44.10
- **
- ** Copyright © 1996/98 by CyberdyneSystems
- **
- ** written by Matthias Henze
- ** All Rights Reserved
- */
-
- #ifndef _INCLUDE_TIME_H
- #include <time.h>
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- struct tms
- {
- clock_t tms_utime; /* User CPU time */
- clock_t tms_stime; /* System CPU time */
- clock_t tms_cutime; /* User CPU time of terminated child procs */
- clock_t tms_cstime; /* System CPU time of terminated child procs */
- };
-
- clock_t times (struct tms *);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif /* SYS_TIMES_H */
-